home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / fixes.arc / README < prev    next >
Text File  |  1989-06-04  |  3KB  |  91 lines

  1. Fixes to the following bugs reports are included in this archive.
  2.  
  3.     bzero.s    
  4.     A long count is taken from the stack.  It should be an int.
  5.  
  6.     bzero.s    
  7.     The 'btst' instruction is not assembled correctly by Sozobon.
  8.  
  9.     memcpy.s
  10.     A long count is taken from the stack.  It should be an int.
  11.  
  12.     memcpy.s
  13.     The 'btst' instruction is not assembled correctly by Sozobon.
  14.  
  15.     lmemcpy.s
  16.     The 'btst' instruction is not assembled correctly by Sozobon.
  17.  
  18.     lmemcpy.s
  19.     The source pointer is not checked for alignment and the case of
  20.     different src/dst alignment (requiring a byte-copy) is not checked.
  21.  
  22.     stat.c
  23.     The access() return values are reversed.
  24.  
  25.     findfile.c
  26.     Fixed access() call to use corrected return value.
  27.  
  28.     open.c
  29.     Fixed access() call to use corrected return value.
  30.  
  31.     stdio.h
  32.     Fixed #define for exists() to use corrected return value.
  33.  
  34.     assert.h
  35.     __LINE__ and __FILE__ are not yet defined for Sozobon, and
  36.     are definately not availble for Alcyon, thus causing errors
  37.     when -DNDEBUG is not used.  A simplistic assert() is provided
  38.     instead which only reports a failure, not the file and line.
  39.  
  40.     osbind.h
  41.     Added an undocumented XBIOS call, Steprate(drive,rate).
  42.  
  43.     fopen.c/fdopen.c
  44.     fopen() and fdopen() contain calls to fputs() with the arguments
  45.     reversed. This can only happen if they're passed an illegal
  46.     argument string, which isn't likely, but if it happens a crash
  47.     would result.
  48.  
  49.     write.c
  50.     Short output counts are not being reported as errors.
  51.  
  52.     perror.c
  53.     The fputs() call to print the error message needs a file pointer.
  54.  
  55.     fclose.c
  56.     The return value from fflush() is not tested.
  57.  
  58.  
  59. The following bug reports have been confirmed, but not fixed yet.
  60.  
  61.     dlibs.a
  62.     The library order is wrong.  realloc.o references lmemcpy.o.
  63.     All of mem*.o and maybe str*.o should be moved below malloc.o
  64.     and friends.
  65.  
  66.  
  67. The following bug reports have been denied.
  68.  
  69.     system.c
  70.     system() is practically guaranteed to fail.
  71.     [[system() tries to used the system variable _shell_p first,
  72.       then tries to execute a program named by the SHELL environment
  73.       variable, finally it tries to execute a program named by the
  74.       first token on the command line.  The PATH environement
  75.       variable is used for all but the _shell_p case.  Since TOS
  76.       has a default PATH consisting only of the boot device root
  77.       directory, and not "." or "" indicating the current directory,
  78.       the PATH search often fails to find the program.  -Dal]]
  79.  
  80.     memcpy.c/lmemcpy.c
  81.     dLibs documentation claims that length parameter to memcpy and
  82.     lmemcpy is either int or long.  Code documents and works (more
  83.     logically, but with some discrepancy with U*IX library) with
  84.     unsigned quantities.
  85.     [[Although the documentation and implementation differ, the
  86.       documentation is consistent with *NIX libraries.  The fact
  87.       that the implementation is more flexible is intended to be
  88.       more convenient, and should not be counted on in portable
  89.       programs.  If the documentation is followed the program will
  90.       operate correctly.  -Dal]]
  91.